Duplicate Issues Improvements#322
Conversation
There was a problem hiding this comment.
This feature was implemented using AI assistance and is pending verification to ensure it works as expected
|
@mor39a Rather than putting scripts directly into the YAML file, I prefer creating a .github/scripts/ directory, placing the executable scripts there, and then calling them from the workflow. |
|
Basically, GitHub Actions can't even be run until they are merged. So, I think we should merge it once it looks good enough and then create follow-up PRs to make adjustments as needed. |
Ok, I'll separate them then.
I don't recommend implementing features without testing them first. I was planning to run them in a test repository. |
|
We could also set it up to add a “potential-duplicate” label. What do you think, @Kyome22? await github.rest.issues.addLabels({
owner: owner,
repo: repo,
issue_number: issue.number,
labels: ['potential-duplicate']
}); |
Of course, if it's possible to set up a test repository and experiment there, that would be even better. |
Adding labels sounds like a great idea. I'm on board with that. |
Context of Contribution
Summary of the Proposal
config.ymlfile to include a message that reiterates the request to check for duplicates before creating a new issue.Reason for the new feature
Given the number of duplicate issues that have been created, I've implemented a set of features aimed at discouraging their creation and improving duplicate issue detection
Checklist